home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.08 Aug 96 / Shared Libes CPX / Example Libraries / C Lib Example / Headers / example.h next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  353 b   |  22 lines  |  [TEXT/MPCC]

  1. #ifndef TANLIB01_H
  2. #define TANLIB01_H
  3.  
  4. #include "TanLibStructs.h"
  5.  
  6. /*
  7.     TanLib01.h
  8.     
  9.     Purpose: Header file for TanLib01.c
  10.     
  11.     This is the public function interface.
  12. */
  13.  
  14. void get_average(data_cache *data);
  15. void get_maximum(data_cache *data);
  16. void get_minimum(data_cache *data);
  17. void get_sum(data_cache *data);
  18. void get_variance(data_cache *data);
  19.  
  20.  
  21. #endif
  22.